home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 13162 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  594 b 

  1. Path: ccnet.com!usenet
  2. From: paulp@ccnet.com (Paul Pedriana)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Templates, Microsoft and Borland
  5. Date: Sat, 23 Mar 1996 19:17:37 GMT
  6. Organization: Two-Bit Software
  7. Message-ID: <4j1ijm$si9@ccnet2.ccnet.com>
  8. References: <3152F6FF.AFC@sequent.com>
  9. NNTP-Posting-Host: h96-191.ccnet.com
  10.  
  11. Richard Shields <richards@sequent.com> wrote:
  12.  
  13. >template <class T>
  14. >TMatrix<T>
  15. >operator *(TMatrix<T> *m1, TMatrix<T> *m2);
  16.  
  17. Are you sure you don't want to say:
  18.     
  19. >template <class T>
  20. >TMatrix<T>
  21. >operator *(TMatrix<T>& m1, TMatrix<T>& m2);
  22.  
  23. Paul Pedriana
  24. paulp@ccnet.com
  25.  
  26.